home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_perl.idb / usr / freeware / lib / perl5 / 5.00502 / CPAN / Nox.pm.z / Nox.pm
Encoding:
Perl POD Document  |  1998-10-28  |  676 b   |  35 lines

  1. BEGIN{$CPAN::Suppress_readline=1 unless defined $CPAN::term;}
  2.  
  3. use CPAN;
  4.  
  5. $CPAN::META->has_inst('MD5','no');
  6. $CPAN::META->has_inst('LWP','no');
  7. $CPAN::META->has_inst('Compress::Zlib','no');
  8. @EXPORT = @CPAN::EXPORT;
  9.  
  10. *AUTOLOAD = \&CPAN::AUTOLOAD;
  11.  
  12. =head1 NAME
  13.  
  14. CPAN::Nox - Wrapper around CPAN.pm without using any XS module
  15.  
  16. =head1 SYNOPSIS
  17.  
  18. Interactive mode:
  19.  
  20.   perl -MCPAN::Nox -e shell;
  21.  
  22. =head1 DESCRIPTION
  23.  
  24. This package has the same functionality as CPAN.pm, but tries to
  25. prevent the usage of compiled extensions during it's own
  26. execution. It's primary purpose is a rescue in case you upgraded perl
  27. and broke binary compatibility somehow.
  28.  
  29. =head1  SEE ALSO
  30.  
  31. CPAN(3)
  32.  
  33. =cut
  34.  
  35.